Skip to content

Conversation

@mirkobrombin
Copy link
Member

@mirkobrombin mirkobrombin commented Jan 6, 2026

This is not a complete feature but the basis to complete the gRPC structure.

// Requests
message CreateBottleRequest {
string name = 1;
string type = 2; // e.g., "Gaming", "Software", "Custom"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

type should be an enum

enum BottleType {
     Gaming = 1;
     Software = 2;
     Custom =  3;
}

Comment on lines +85 to +94
message BottleConfig {
string runner = 1;
string dxvk_version = 2;
string vkd3d_version = 3;
string latencyflex_version = 4; // Optional
bool dxvk_nvapi = 5;
bool esync = 6;
bool fsync = 7;
// Add other relevant settings
}
Copy link
Contributor

@cyberphantom52 cyberphantom52 Jan 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BottleConfig should be sent as a map probably. Not as individual fields

// System
message ShutdownRequest {}

message WinebootRequest {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make this an enum?


message MessageResponse {
bool success = 1;
string error = 2; // Optional error detail
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if error is optional make it
optional string error = 2;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants